home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 7414 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.6 KB

  1. Path: soap.news.pipex.net!pipex!usenet
  2. From: m.hendry@dial.pipex.com (Mathew Hendry)
  3. Newsgroups: comp.sys.amiga.misc
  4. Subject: Re: Help: amigaDos ASSIGN syntax difficulties
  5. Date: Fri, 8 Mar 96 22:01:19
  6. Organization: Private node.
  7. Distribution: world
  8. Message-ID: <19960308.4120C8.13973@ai152.du.pipex.com>
  9. References: <3140119D.57FC@pris.bc.ca>
  10. NNTP-Posting-Host: ai152.du.pipex.com
  11. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  12.  
  13. Doug Hayes (dhayes@pris.bc.ca) wrote:
  14. : Hi. I would apprecicate any help in answering the following question 
  15. : regarding assigns? When the volume being assigned has more than one 
  16. : word in it's title, such as - assign This Great Program:, I seem to run into 
  17. : trouble and the assign will not work. I have tried including an underline 
  18. : between each word (which were not in the original disk title) - assign 
  19. : This_Great_Program: and I have tried putting it within quotes, assign 
  20. : "This Great Program": but nothing seems to work. The second part of the 
  21. : assign command, i.e. the path and directory syntax seem to be ok and work 
  22. : fine. Could anyone offer any advice. Thanks very much.
  23.  
  24. The colon must be within quotes too.
  25.  
  26. For example:
  27.  
  28. New Shell process 11
  29. 11.Blister:> Assign "This Great Program:" RAM:
  30. 11.Blister:> CD "This Great Program:"
  31. 11.Ram Disk:>
  32.  
  33. No problems. Remember that you must enclose the assign (and indeed any path
  34. which contains spaces) in quotes with all command line programs. Examples:
  35.  
  36. Dir "This Great Program:"
  37. CD "This Great Program:Env"
  38. Copy "This Great Program:Env/#?" ENVARC: ALL
  39. Copy "This Great Program:Env/#?" "DH0:Directory name containing spaces" ALL
  40. Delete "This Great Program:Env/#?" ALL
  41.  
  42. etc.
  43.  
  44. -- Mat.
  45.